From 326da2da58ff90ce9c816923d6c6533ce99adb3e Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Fri, 7 Feb 2014 15:37:02 -0500 Subject: [PATCH] docs: don't use --- gtk/deprecated/gtkrc.c | 16 +++++++++------- gtk/gtkbindings.h | 1 - gtk/gtkcombobox.c | 6 +++--- gtk/gtkdialog.c | 2 +- gtk/gtkentry.c | 18 +++++++++--------- gtk/gtkfilechooserwidget.c | 22 +++++++++++----------- gtk/gtkflowbox.c | 12 ++++++------ gtk/gtkiconview.c | 12 ++++++------ gtk/gtkinfobar.c | 2 +- gtk/gtklabel.c | 6 +++--- gtk/gtkpaned.c | 12 ++++++------ gtk/gtkscalebutton.c | 4 ++-- gtk/gtkscrolledwindow.c | 4 ++-- gtk/gtktextview.c | 24 ++++++++++++------------ gtk/gtkwindow.c | 4 ++-- 15 files changed, 73 insertions(+), 72 deletions(-) diff --git a/gtk/deprecated/gtkrc.c b/gtk/deprecated/gtkrc.c index a920d2ee9b..bb058615f1 100644 --- a/gtk/deprecated/gtkrc.c +++ b/gtk/deprecated/gtkrc.c @@ -74,7 +74,7 @@ * > In GTK+ 3.0, resource files have been deprecated and replaced by * > CSS-like style sheets, which are understood by #GtkCssProvider. * - * # Default files # + * # Default Files # * * An application can cause GTK+ to parse a specific RC * file by calling gtk_rc_parse(). In addition to this, @@ -94,8 +94,9 @@ * Additionally, the `GTK2_RC_FILES` environment variable * can be set to a #G_SEARCHPATH_SEPARATOR_S-separated list of files * in order to overwrite the set of default files at runtime. - - * + * + * # Locale Specific Files # {#locale-specific-rc} + * * For each RC file, in addition to the file itself, GTK+ will look for * a locale-specific file that will be parsed after the main file. * For instance, if `LANG` is set to `ja_JP.ujis`, @@ -103,7 +104,7 @@ * for `~/.gtkrc.ja_JP` and `~/.gtkrc.ja`, * and parses the first of those that exists. * - * # Pathnames and patterns # + * # Pathnames and Patterns # * * A resource file defines a number of styles and key bindings and * attaches them to particular widgets. The attachment is done @@ -180,7 +181,7 @@ * up, and `gtk` is used for styles * that GTK+ creates internally. * - * # Theme gtkrc files # + * # Theme gtkrc Files # * * Theme RC files are loaded first from under the `~/.themes/`, * then from the directory from gtk_rc_get_theme_dir(). The files looked at will @@ -246,7 +247,7 @@ * as possible, because matching `"A*B*C*RestString"` can * result in matching complexities of O(n^2) worst case. * - * # Toplevel declarations # + * # Toplevel Declarations # * * An RC file is a text file which is composed of a sequence * of declarations. `“#”` characters delimit comments and @@ -447,7 +448,8 @@ * A color used for the background of widgets that have * been set insensitive with gtk_widget_set_sensitive(). * - * + * ## Color Format ## {#color-format} + * * Colors can be specified as a string containing a color name (GTK+ knows * all names from the X color database `/usr/lib/X11/rgb.txt`), * in one of the hexadecimal forms `#rrrrggggbbbb`, diff --git a/gtk/gtkbindings.h b/gtk/gtkbindings.h index 7fcffdbfe8..ca40775cb2 100644 --- a/gtk/gtkbindings.h +++ b/gtk/gtkbindings.h @@ -128,7 +128,6 @@ struct _GtkBindingArg * @n_args: number of arguments specified for the signal * @args: the arguments specified for the signal * - * * A GtkBindingSignal stores the necessary information to * activate a widget in response to a key press via a signal * emission. diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index c0c7718809..752b43501e 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -550,7 +550,7 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass) * @scroll_type: a #GtkScrollType * * The ::move-active signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to move the active selection. * * Since: 2.12 @@ -570,7 +570,7 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass) * @widget: the object that received the signal * * The ::popup signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to popup the combo box list. * * The default binding for this signal is Alt+Down. @@ -590,7 +590,7 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass) * @button: the object which received the signal * * The ::popdown signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to popdown the combo box list. * * The default bindings for this signal are Alt+Up and Escape. diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index e1df310903..a597ebe337 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -502,7 +502,7 @@ gtk_dialog_class_init (GtkDialogClass *class) * GtkDialog::close: * * The ::close signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user uses a keybinding to close * the dialog. * diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 1e2e7a347e..e12292f327 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -1560,7 +1560,7 @@ gtk_entry_class_init (GtkEntryClass *class) * the Enter key. * * While this signal is used as a - * [keybinding signal][keybinding-signals], + * [keybinding signal][GtkBindingSignal], * it is also commonly used by applications to intercept * activation of entries. * @@ -1584,7 +1584,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @extend_selection: %TRUE if the move should extend the selection * * The ::move-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a cursor movement. * If the cursor is not visible in @entry, this signal causes * the viewport to be moved instead. @@ -1619,7 +1619,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @string: the string to insert * * The ::insert-at-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates the insertion of a * fixed string at the cursor. * @@ -1642,7 +1642,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @count: the number of @type units to delete * * The ::delete-from-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a text deletion. * * If the @type is %GTK_DELETE_CHARS, GTK+ deletes the selection @@ -1669,7 +1669,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @entry: the object which received the signal * * The ::backspace signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * The default bindings for this signal are @@ -1689,7 +1689,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @entry: the object which received the signal * * The ::cut-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to cut the selection to the clipboard. * * The default bindings for this signal are @@ -1709,7 +1709,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @entry: the object which received the signal * * The ::copy-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to copy the selection to the clipboard. * * The default bindings for this signal are @@ -1729,7 +1729,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @entry: the object which received the signal * * The ::paste-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to paste the contents of the clipboard * into the text view. * @@ -1750,7 +1750,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @entry: the object which received the signal * * The ::toggle-overwrite signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to toggle the overwrite mode of the entry. * * The default bindings for this signal is Insert. diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c index 947c3d9c0d..77c2a73a66 100644 --- a/gtk/gtkfilechooserwidget.c +++ b/gtk/gtkfilechooserwidget.c @@ -7167,7 +7167,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * name. * * The ::location-popup signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser show a "Location" @@ -7198,7 +7198,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::location-popup-on-paste signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser show a "Location" @@ -7220,7 +7220,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::location-toggle-popup signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to toggle the visibility of a "Location" @@ -7243,7 +7243,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::up-folder signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser go to the parent of @@ -7265,7 +7265,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::down-folder signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser go to a child of the @@ -7291,7 +7291,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::home-folder signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser show the user's home @@ -7313,7 +7313,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::desktop-folder signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser show the user's Desktop @@ -7336,7 +7336,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @bookmark_index: the number of the bookmark to switch to * * The ::quick-bookmark signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser switch to the bookmark @@ -7364,7 +7364,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::show-hidden signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser display hidden files. @@ -7385,7 +7385,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::search-shortcut signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser show the search entry. @@ -7406,7 +7406,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class) * @widget: the object which received the signal. * * The ::recent-shortcut signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * This is used to make the file chooser show the Recent location. diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c index 2b803c5ed5..6c99fb36fb 100644 --- a/gtk/gtkflowbox.c +++ b/gtk/gtkflowbox.c @@ -592,7 +592,7 @@ gtk_flow_box_child_class_init (GtkFlowBoxChildClass *class) * double-clicking, or by using the Space or Enter key. * * While this signal is used as a - * [keybinding signal][keybinding-signals], + * [keybinding signal][GtkBindingSignal], * it can be used by applications for their own purposes. */ child_signals[CHILD_ACTIVATE] = @@ -3792,7 +3792,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class) * @box: the #GtkFlowBox on which the signal is emitted * * The ::activate-cursor-child signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user activates the @box. */ signals[ACTIVATE_CURSOR_CHILD] = g_signal_new ("activate-cursor-child", @@ -3808,7 +3808,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class) * @box: the #GtkFlowBox on which the signal is emitted * * The ::toggle-cursor-child signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which toggles the selection of the child that has the focus. * * The default binding for this signal is Ctrl-Space. @@ -3828,7 +3828,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class) * @count: the number of @step units to move * * The ::move-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a cursor movement. * If the cursor is not visible in @text_view, this signal causes * the viewport to be moved instead. @@ -3858,7 +3858,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class) * @box: the #GtkFlowBox on which the signal is emitted * * The ::select-all signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to select all children of the box, if * the selection mode permits it. * @@ -3877,7 +3877,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class) * @box: the #GtkFlowBox on which the signal is emitted * * The ::unselect-all signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to unselect all children of the box, if * the selection mode permits it. * diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c index 66f664335d..e331d26c14 100644 --- a/gtk/gtkiconview.c +++ b/gtk/gtkiconview.c @@ -724,7 +724,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass) * GtkIconView::select-all: * @iconview: the object on which the signal is emitted * - * A [keybinding signal][keybinding-signals] + * A [keybinding signal][GtkBindingSignal] * which gets emitted when the user selects all items. * * Applications should not connect to it, but may emit it with @@ -746,7 +746,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass) * GtkIconView::unselect-all: * @iconview: the object on which the signal is emitted * - * A [keybinding signal][keybinding-signals] + * A [keybinding signal][GtkBindingSignal] * which gets emitted when the user unselects all items. * * Applications should not connect to it, but may emit it with @@ -768,7 +768,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass) * GtkIconView::select-cursor-item: * @iconview: the object on which the signal is emitted * - * A [keybinding signal][keybinding-signals] + * A [keybinding signal][GtkBindingSignal] * which gets emitted when the user selects the item that is currently * focused. * @@ -791,7 +791,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass) * GtkIconView::toggle-cursor-item: * @iconview: the object on which the signal is emitted * - * A [keybinding signal][keybinding-signals] + * A [keybinding signal][GtkBindingSignal] * which gets emitted when the user toggles whether the currently * focused item is selected or not. The exact effect of this * depend on the selection mode. @@ -815,7 +815,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass) * GtkIconView::activate-cursor-item: * @iconview: the object on which the signal is emitted * - * A [keybinding signal][keybinding-signals] + * A [keybinding signal][GtkBindingSignal] * which gets emitted when the user activates the currently * focused item. * @@ -841,7 +841,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass) * @count: the number of @step units to move * * The ::move-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a cursor movement. * * Applications should not connect to it, but may emit it with diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index fe3bb3f237..d29a3e0d28 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -481,7 +481,7 @@ gtk_info_bar_class_init (GtkInfoBarClass *klass) * GtkInfoBar::close: * * The ::close signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user uses a keybinding to dismiss * the info bar. * diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c index 4b2a72d443..900a783a69 100644 --- a/gtk/gtklabel.c +++ b/gtk/gtklabel.c @@ -582,7 +582,7 @@ gtk_label_class_init (GtkLabelClass *class) * @extend_selection: %TRUE if the move should extend the selection * * The ::move-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a cursor movement. * If the cursor is not visible in @entry, this signal causes * the viewport to be moved instead. @@ -616,7 +616,7 @@ gtk_label_class_init (GtkLabelClass *class) * @label: the object which received the signal * * The ::copy-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to copy the selection to the clipboard. * * The default binding for this signal is Ctrl-c. @@ -656,7 +656,7 @@ gtk_label_class_init (GtkLabelClass *class) * GtkLabel::activate-current-link: * @label: The label on which the signal was emitted * - * A [keybinding signal][keybinding-signals] + * A [keybinding signal][GtkBindingSignal] * which gets emitted when the user activates a link in the label. * * Applications may also emit the signal with g_signal_emit_by_name() diff --git a/gtk/gtkpaned.c b/gtk/gtkpaned.c index 9c4b07aa24..b25d243a77 100644 --- a/gtk/gtkpaned.c +++ b/gtk/gtkpaned.c @@ -443,7 +443,7 @@ gtk_paned_class_init (GtkPanedClass *class) * @reversed: whether cycling backward or forward * * The ::cycle-child-focus signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to cycle the focus between the children of the paned. * * The default binding is f6. @@ -465,7 +465,7 @@ gtk_paned_class_init (GtkPanedClass *class) * @widget: the object that received the signal * * The ::toggle-handle-focus is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to accept the current position of the handle and then * move focus to the next widget in the focus chain. * @@ -488,7 +488,7 @@ gtk_paned_class_init (GtkPanedClass *class) * @scroll_type: a #GtkScrollType * * The ::move-handle signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to move the handle when the user is using key bindings * to move it. * @@ -510,7 +510,7 @@ gtk_paned_class_init (GtkPanedClass *class) * @reversed: whether cycling backward or forward * * The ::cycle-handle-focus signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to cycle whether the paned should grab focus to allow * the user to change position of the handle by using key bindings. * @@ -533,7 +533,7 @@ gtk_paned_class_init (GtkPanedClass *class) * @widget: the object that received the signal * * The ::accept-position signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to accept the current position of the handle when * moving it using key bindings. * @@ -555,7 +555,7 @@ gtk_paned_class_init (GtkPanedClass *class) * @widget: the object that received the signal * * The ::cancel-position signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to cancel moving the position of the handle using key * bindings. The position of the handle will be reset to the value prior to * moving it. diff --git a/gtk/gtkscalebutton.c b/gtk/gtkscalebutton.c index 187fd14f48..3f1eea7ce9 100644 --- a/gtk/gtkscalebutton.c +++ b/gtk/gtkscalebutton.c @@ -269,7 +269,7 @@ gtk_scale_button_class_init (GtkScaleButtonClass *klass) * @button: the object which received the signal * * The ::popup signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to popup the scale widget. * * The default bindings for this signal are Space, Enter and Return. @@ -290,7 +290,7 @@ gtk_scale_button_class_init (GtkScaleButtonClass *klass) * @button: the object which received the signal * * The ::popdown signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to popdown the scale widget. * * The default binding for this signal is Escape. diff --git a/gtk/gtkscrolledwindow.c b/gtk/gtkscrolledwindow.c index c1772251e8..0840ff0125 100644 --- a/gtk/gtkscrolledwindow.c +++ b/gtk/gtkscrolledwindow.c @@ -498,7 +498,7 @@ gtk_scrolled_window_class_init (GtkScrolledWindowClass *class) * horizontally or not * * The ::scroll-child signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when a keybinding that scrolls is pressed. * The horizontal or vertical adjustment is updated which triggers a * signal that the scrolled windows child may listen to and scroll itself. @@ -521,7 +521,7 @@ gtk_scrolled_window_class_init (GtkScrolledWindowClass *class) * %GTK_DIR_TAB_BACKWARD * * The ::move-focus-out signal is a - * [keybinding signal][keybinding-signals] which gets + * [keybinding signal][GtkBindingSignal] which gets * emitted when focus is moved away from the scrolled window by a * keybinding. The #GtkWidget::move-focus signal is emitted with * @direction_type on this scrolled windows toplevel parent in the diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c index ed0c5a0b93..922be64f90 100644 --- a/gtk/gtktextview.c +++ b/gtk/gtktextview.c @@ -928,7 +928,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @extend_selection: %TRUE if the move should extend the selection * * The ::move-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a cursor movement. * If the cursor is not visible in @text_view, this signal causes * the viewport to be moved instead. @@ -966,7 +966,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @count: the number of @step units to move * * The ::move-viewport signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which can be bound to key combinations to allow the user * to move the viewport, i.e. change what part of the text view * is visible in a containing scrolled window. @@ -989,7 +989,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::set-anchor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates setting the "anchor" * mark. The "anchor" mark gets placed at the same position as the * "insert" mark. @@ -1011,7 +1011,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @string: the string to insert * * The ::insert-at-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates the insertion of a * fixed string at the cursor. * @@ -1034,7 +1034,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @count: the number of @type units to delete * * The ::delete-from-cursor signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user initiates a text deletion. * * If the @type is %GTK_DELETE_CHARS, GTK+ deletes the selection @@ -1062,7 +1062,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::backspace signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user asks for it. * * The default bindings for this signal are @@ -1082,7 +1082,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::cut-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to cut the selection to the clipboard. * * The default bindings for this signal are @@ -1102,7 +1102,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::copy-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to copy the selection to the clipboard. * * The default bindings for this signal are @@ -1122,7 +1122,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::paste-clipboard signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to paste the contents of the clipboard * into the text view. * @@ -1143,7 +1143,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::toggle-overwrite signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to toggle the overwrite mode of the text view. * * The default bindings for this signal is Insert. @@ -1193,7 +1193,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @select: %TRUE to select, %FALSE to unselect * * The ::select-all signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to select or unselect the complete * contents of the text view. * @@ -1214,7 +1214,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass) * @text_view: the object which received the signal * * The ::toggle-cursor-visible signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted to toggle the visibility of the cursor. * * The default binding for this signal is F7. diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index 36ee0d16aa..fcc98c2edc 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -1170,7 +1170,7 @@ gtk_window_class_init (GtkWindowClass *klass) * @window: the window which received the signal * * The ::activate-focus signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user activates the currently * focused widget of @window. */ @@ -1189,7 +1189,7 @@ gtk_window_class_init (GtkWindowClass *klass) * @window: the window which received the signal * * The ::activate-default signal is a - * [keybinding signal][keybinding-signals] + * [keybinding signal][GtkBindingSignal] * which gets emitted when the user activates the default widget * of @window. */ -- 2.30.2